/* Import Google Fonts */
@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@200;300;400;500;600;700;800&display=swap");
body {
  --primary: #0f172a;
  --accent: #b3e0dc;
  --darker-accent: #44d7ca;
  --highlight: #efe558;
  --text-muted: #64748b;
  --border-light: #e5e7eb;
  --bg-soft: #f8fafc;
}
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-weight: 500;
}

/* HEADER */
.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 40px;
  background-color: #ffffff;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid #eee;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #00c3d0;
  font-weight: bold;
}

.logo img {
  height: 32px;
  width: auto;
}
.nav-links {
  display: flex;
  gap: 25px;
  align-items: center;
}
.section-title {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
}
.admin-title {
  text-align: center;
  font-size: 20px;
  margin-bottom: 10px;
  letter-spacing: 2px;
  color: #27C9BA;
}
.nav-links a,
.dropbtn {
  text-decoration: none;
  color: #333;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 14px;
}

.nav-links > a:hover {
  color: #00c3d0;
}
b {
  color: #333;
}

/* HAMBURGER MENU */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}

.hamburger span {
  height: 3px;
  width: 25px;
  background-color: #333;
  border-radius: 2px;
  transition: all 0.3s ease;
}

/* BODY */
.content {
  max-width: 1100px;
  margin: 50px auto;
  padding: 0 20px;
}

/* FOOTER */
.site-footer {
  background-color: #44d7ca;
  padding: 30px 40px;
  color: #000;
}

/* Top section */
.footer-logo {
  height: 32px;
  width: auto;
  display: inline-block;
}
.footer-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  letter-spacing: 2px;
  font-size: 18px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 20px;
  margin-bottom: 20px;
}

/* Navigation */
.footer-nav {
  display: flex;
  gap: 12px;
  font-size: 14px;
}

.footer-nav a {
  text-decoration: none;
  color: #000;
  letter-spacing: 2px;
}
.footer-nav > a:hover {
  color: #fff;
}

.footer-nav span {
  opacity: 0.7;
}

/* Divider */
.footer-line {
  margin: 10px 0;
  border: none;
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}

/* Bottom section */
.footer-bottom {
    width: 100%; /* full width of the page */
    display: flex; /* enable flexbox */
    justify-content: center; /* horizontally center */
    align-items: center; /* vertically center if needed */
}

.footer-text {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 6px;
}

.footer-text strong {
    font-size: 16px;
    color: var(--primary);
}

.footer-text p {
    font-size: 13px;
    font-style: italic;
    color: #363636;
    margin: 0px;
}


.footer-social {
  display: flex;
  gap: 16px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}

.footer-social i {
  font-size: 16px;
  color: #000;
}

.footer-social a:hover {
  transform: scale(1.1);
}
.btn-primary {
  background: #111;
  color: #fff;
  padding: 14px 28px;
  border-radius: 12px;
  border: none;
  text-decoration: none;

  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.btn-primary:hover,
.feature-card:hover,
.osint-box:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}
.btn-primary:active {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
}


@media (max-width: 768px) {
  .navbar {
    flex-wrap: wrap;
    padding: 15px 20px;
  }

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    gap: 0;
    margin-top: 15px;
  }

  .nav-links.active {
    display: flex;
  }

  .nav-links a,
  .dropbtn {
    padding: 12px 0;
    width: 100%;
    text-align: left;
    border-bottom: 1px solid #eee;
  }

  .dropdown-content {
    position: static;
    box-shadow: none;
    background-color: #f9f9f9;
    margin-left: 15px;
  }

  .dropdown:hover .dropdown-content {
    display: none;
  }

  .dropdown.active .dropdown-content {
    display: block;
  }

  .search-box {
    width: 100%;
    margin-top: 10px;
    padding: 12px 0;
  }

  .search-box input {
    width: 100%;
  }
  .footer-nav {
    display: flex;
    flex-direction: column; 
    gap: 12px; 
    font-size: 16px;  
  }

  .footer-nav a {
    width: 100%; 
    text-align: center; 
    padding: 8px 0; 
  }

  .footer-logo {
    display: flex;
    justify-content: center; 
    margin-bottom: 20px; 
  }

  .footer-brand {
    font-size: 18px; 
  }

  .footer-social {
    justify-content: center; 
    margin-top: 20px; 
  }
}
